home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / cmsettings.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-09-09  |  3.7 KB  |  92 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. /***************************************************************************
  8.  *   Copyright (C) 2006 by Craig Bradney                                   *
  9.  *   mrb@scribus.info                                                      *
  10.  *                                                                         *
  11.  *   This program is free software; you can redistribute it and/or modify  *
  12.  *   it under the terms of the GNU General Public License as published by  *
  13.  *   the Free Software Foundation; either version 2 of the License, or     *
  14.  *   (at your option) any later version.                                   *
  15.  *                                                                         *
  16.  *   This program is distributed in the hope that it will be useful,       *
  17.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  18.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  19.  *   GNU General Public License for more details.                          *
  20.  *                                                                         *
  21.  *   You should have received a copy of the GNU General Public License     *
  22.  *   along with this program; if not, write to the                         *
  23.  *   Free Software Foundation, Inc.,                                       *
  24.  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  25.  ***************************************************************************/
  26.  
  27. #ifndef CMSETTINGS_H
  28. #define CMSETTINGS_H
  29.  
  30. #include "scconfig.h"
  31. #include "scribusapi.h"
  32. #include <QString>
  33. class ScribusDoc;
  34.  
  35. #include CMS_INC
  36.  
  37. class SCRIBUS_API CMSettings
  38. {
  39. public:
  40.     CMSettings(ScribusDoc* doc, const QString& profileName, int intent);
  41.     ~CMSettings();
  42.     
  43.     ScribusDoc* doc() const {return m_Doc;}
  44.     QString profileName() const {return m_ProfileName;}
  45.     QString outputProfile() const { return m_outputProfile; }
  46.     int intent() const {return m_Intent;}
  47.  
  48.     bool useOutputProfile() const { return !m_outputProfile.isEmpty(); }
  49.     void setOutputProfile(const QString& prof) { m_outputProfile = prof; }
  50.  
  51.     bool useColorManagement() const;
  52.  
  53.     QString defaultMonitorProfile() const;
  54.     QString defaultPrinterProfile() const;
  55.     QString defaultImageRGBProfile() const;
  56.     QString defaultImageCMYKProfile() const;
  57.     QString defaultSolidColorRGBProfile() const;
  58.     QString defaultSolidColorCMYKProfile() const;
  59.  
  60.     int colorRenderingIntent() const;
  61.     int imageRenderingIntent() const;
  62.  
  63.     bool useBlackPoint() const;
  64.     bool doSoftProofing() const;
  65.     bool doGamutCheck() const;
  66.  
  67.     cmsHPROFILE monitorProfile() const;
  68.     cmsHPROFILE printerProfile() const;
  69.  
  70.     cmsHTRANSFORM rgbColorDisplayTransform() const;   // stdTransRGBMonG
  71.     cmsHTRANSFORM rgbColorProofingTransform() const;  // stdProofG
  72.     cmsHTRANSFORM rgbImageDisplayTransform() const;   // stdTransImgG
  73.     cmsHTRANSFORM rgbImageProofingTransform() const;  // stdProofImgG
  74.     cmsHTRANSFORM rgbToCymkColorTransform() const;    // stdTransCMYKG
  75.     cmsHTRANSFORM rgbGamutCheckTransform() const;     // stdProofGCG
  76.  
  77.     cmsHTRANSFORM cmykColorDisplayTransform() const;  // stdTransCMYKMonG
  78.     cmsHTRANSFORM cmykColorProofingTransform() const; // stdProofCMYKG
  79.     cmsHTRANSFORM cmykImageProofingTransform() const; // stdProofImgCMYK
  80.     cmsHTRANSFORM cmykToRgbColorTransform() const;    // stdTransRGBG
  81.     cmsHTRANSFORM cmykGamutCheckTransform() const;    //stdProofCMYKGCG
  82.  
  83. protected:
  84.     ScribusDoc* m_Doc;
  85.     QString m_ProfileName;
  86.     QString m_outputProfile;
  87.     int m_Intent;
  88.  
  89. };
  90.  
  91. #endif
  92.